home *** CD-ROM | disk | FTP | other *** search
- // -------------------------------------------------------------------------------------
- // ExpandedView.h
- // -------------------------------------------------------------------------------------
- #import <appkit/View.h>
-
- // -------------------------------------------------------------------------------------
- @interface ExpandedView : View
- {
-
- id imageId; // image id
- int imageRep; // which rep to display
- NXRect imageFrame; // image origin within view
- BOOL drawWithAlpha; // draw image with alpha (composite)
- float backgroundGray; // background gray
- id myScrollView; // image scroller
-
- }
-
- // -------------------------------------------------------------------------------------
- - setScrollView:scrollView;
- - setImage:image;
- - windowWillResize:windowId toSize:(NXSize*)newSize;
-
- @end
-